a {
    color: inherit;
}

.margin {
    height: 40px;
    width: 100%;
}

/* Main Container */

#Privacy-Content {

    width: min(92%, 1100px);

    margin:
        120px auto
        60px auto;

    padding:
        3rem
        clamp(1.5rem, 4vw, 4rem);

    border-radius: 28px;

    background: #1d212b;

    border:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.35);
}

/* Headings */

#Privacy-Content h1 {

    text-align: center;

    font-size:
        clamp(2.4rem, 5vw, 4rem);

    margin-bottom: 2rem;

    color: white;
}

#Privacy-Content h2 {

    font-size:
        clamp(1.5rem, 4vw, 2rem);

    margin-bottom: 1.5rem;

    color: white;
}

/* Paragraphs */

.Content-Para {

    width: 100%;

    max-width: 950px;

    margin:
        auto;

    padding:
        0.5rem 0;

    color:
        rgba(255,255,255,0.82);

    line-height: 1.8;

    font-size: 1rem;
}

/* Lists */

.List {

    width: 100%;

    max-width: 950px;

    margin:
        1rem auto;
}

.List ul {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    padding-left: 1.2rem;
}

.List li {

    color:
        rgba(255,255,255,0.82);

    line-height: 1.8;
}

.List strong {
    color: white;
}

/* Break Line */

.PBreak {

    height: 1px;

    width: 80%;

    margin:
        3rem auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,175,55,0.6),
            transparent
        );
}

/* Mobile */

@media (max-width: 768px) {

    #Privacy-Content {

        padding:
            2rem
            1.5rem;

        margin-top: 100px;
    }

    .Content-Para,
    .List li {

        font-size: 0.95rem;
    }
}
